type encoding/json.field

16 uses

	encoding/json (current package)
		encode.go#L692: 	list         []field
		encode.go#L693: 	byExactName  map[string]*field
		encode.go#L694: 	byFoldedName map[string]*field
		encode.go#L1052: type field struct {
		encode.go#L1091: 	current := []field{}
		encode.go#L1092: 	next := []field{{typ: t}}
		encode.go#L1101: 	var fields []field
		encode.go#L1171: 					field := field{
		encode.go#L1235: 					next = append(next, field{name: ft.Name(), index: index, typ: ft})
		encode.go#L1241: 	slices.SortFunc(fields, func(a, b field) int {
		encode.go#L1289: 	slices.SortFunc(fields, func(i, j field) int {
		encode.go#L1297: 	exactNameIndex := make(map[string]*field, len(fields))
		encode.go#L1298: 	foldedNameIndex := make(map[string]*field, len(fields))
		encode.go#L1315: func dominantField(fields []field) (field, bool) {
		encode.go#L1320: 		return field{}, false